home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex4.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  157 b   |  11 lines

  1. Program Example4;
  2.  
  3. { Program to demonstrate the ArcTan function. }
  4.  
  5. Var R : Real;
  6.  
  7. begin
  8.   R:=ArcTan(0);      { R:=0 }
  9.   R:=ArcTan(1)/pi;   { R:=0.25 }
  10. end.
  11.